home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / templates / Java / Java Applet.java < prev    next >
Text File  |  2003-06-01  |  307b  |  22 lines

  1. //Description: Java Applet|
  2. /* Created: {$DateTime} by {$UserName}
  3. **
  4. **
  5. */
  6.  
  7. import java.awt.*;
  8. import java.applet.*;
  9.  
  10.  
  11. public class {$FileTitleNoExt} extends Applet {
  12.  
  13.   public void init() {
  14.  
  15.   }
  16.  
  17.   public void paint(Graphics g) {
  18.     g.drawString("Welcome to Java!", 50, 60 );
  19.   }
  20. }
  21.  
  22.